Component org.nuxeo.ecm.permissions.directories
In bundle org.nuxeo.ecm.permissions
Resolution Order
228
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.permissions.directories">
<extension target="org.nuxeo.ecm.core.schema.TypeService" point="schema">
<schema name="aceinfo" src="schemas/aceinfo.xsd" prefix="aceinfo" />
</extension>
<extension target="org.nuxeo.ecm.directory.GenericDirectory" point="directories">
<directory name="aceinfo" extends="template-directory">
<schema>aceinfo</schema>
<idField>id</idField>
<types>
<type>system</type>
</types>
<permissions>
<permission name="Read">
<group>__Nobody__</group>
</permission>
</permissions>
</directory>
</extension>
</component>